home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-02-27 | 788 b | 28 lines | [TEXT/MPS ] |
- # UserStartupTS•CInc - customized MPW Shell UserStartup File
- #
- # This file contains the definitions used by the CIncludes tools and scripts
- # also adds support for multiple (nested) CIncludes folders for Apple MPW and Symantec MPW C/C++ compilers
-
- # support extra CIncludes search paths
- # for MPW C and C++ …
- Set CIncList ""
- For i in `Files -f -d "{CIncludes}" ≥ Dev:Null`
- Set CIncList "{CIncList} -i {i}"
- End # For i
- Export CIncList
- Alias C 'C {CIncList}'
- Alias CPlus 'CPlus {CIncList}'
- # for Symantec C++ …
- Set SCIncList ""
- For i in `Files -f -d "{SCIncludes}" ≥ Dev:Null`
- Set SCIncList "{SCIncList} -i {i}"
- End # For i
- Export SCIncList
- Alias SC 'SC {CIncList}'
- Alias SCpp 'SCpp {CIncList}'
-
- Set CIncludesCompiler AppleCFront
- Export CIncludesCompiler
-
- # end of UserStartupTS•CInc
-